DataCollection | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / C1SelectManyDataCollection<S,T> Class / C1SelectManyDataCollection<S,T> Constructor
The source.
Select many function which converts a source item into an item of this collection.

In This Topic
    C1SelectManyDataCollection<S,T> Constructor
    In This Topic
    Initializes a new instance of the C1SelectManyDataCollection<S,T> class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal source As IEnumerable, _
       ByVal selectMany As Func(Of Integer,S,IReadOnlyList(Of T)) _
    )
    public C1SelectManyDataCollection<S,T>( 
       IEnumerable source,
       Func<int,S,IReadOnlyList<T>> selectMany
    )

    Parameters

    source
    The source.
    selectMany
    Select many function which converts a source item into an item of this collection.
    See Also